home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 24
/
Aminet 24 (1998)(GTI - Schatztruhe)[!][Apr 1998].iso
/
Aminet
/
dev
/
c
/
AmiVoGL_MDEV.lha
/
drivers
/
ibmpc
/
vega_dra.c
< prev
next >
Wrap
C/C++ Source or Header
|
1991-07-18
|
318b
|
20 lines
#include "vogl.h"
/*
* vega_draw
*
* For V/EGA
* Draws a line from the current screen spot to x, y
*/
extern unsigned _cur_color;
vega_draw(x, y)
register int x, y;
{
egaline(vdevice.cpVx, vdevice.sizeSy - vdevice.cpVy, x, vdevice.sizeSy - y, _cur_color);
vdevice.cpVx = x;
vdevice.cpVy = y;
return(0);
}